ec7ba0d3d0f35489685159175e38b51258cb3c6b,source/de/anomic/index/indexURLEntry.java,indexURLEntry,indexURLEntry,#Properties#,188
Before Change
this.entry.setCol(col_mod, encodeDate(new Date()));
}
try {
this.entry.setCol(col_load, encodeDate(serverDate.shortDayFormatter.parse(prop.getProperty("load", "20000101"))));
} catch (ParseException e) {
this.entry.setCol(col_load, encodeDate(new Date()));
}
try {
this.entry.setCol(col_fresh, encodeDate(serverDate.shortDayFormatter.parse(prop.getProperty("fresh", "20000101"))));
} catch (ParseException e) {
this.entry.setCol(col_fresh, encodeDate(new Date()));
}
After Change
encodeDate(col_mod, new Date());
}
try {
encodeDate(col_load, serverDate.shortDayFormatter.parse(prop.getProperty("load", "20000101")));
} catch (ParseException e) {
encodeDate(col_load, new Date());
}
try {
encodeDate(col_fresh, serverDate.shortDayFormatter.parse(prop.getProperty("fresh", "20000101")));
} catch (ParseException e) {
encodeDate(col_fresh, new Date());
}